.about-solar-section {
    background-color: #ffffff;
    padding: 100px 40px 120px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #000000;
    font-family: var(--font-body), sans-serif;
}
.about-solar-section .about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(200px, 30vw, 500px);
    font-weight: 900;
    line-height: 0.8;
    font-family: var(--font-heading), serif;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    color: #000;
}
.about-solar-section .section-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.about-solar-section .section-heading h1 {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.0;
    text-transform: uppercase;
    margin: 0;
}
.about-solar-section .section-heading h1 .text-white {
    color: #000000;
}
.about-solar-section .section-heading h1 .text-accent {
    color: var(--primary-color, #fe8704);
}
.about-solar-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
}
.about-solar-section .about-image-col {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.about-solar-section .about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-solar-section .about-image-col:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}
.about-solar-section .about-image-left {
    height: 550px;
}
.about-solar-section .about-image-right {
    height: 550px;
}
.about-solar-section .about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    min-height: 500px;
    text-align: center;
}
.about-solar-section .about-text-col p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.8;
    color: #343434;
    font-weight: 300;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .about-solar-section {
        padding: 60px 24px;
    }
    .about-solar-section .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-solar-section .about-image-left,
    .about-solar-section .about-image-right {
        height: 400px;
    }
    .about-solar-section .about-text-col {
        min-height: auto;
        padding: 40px 0;
    }
    .about-solar-section .about-bg-text {
        font-size: 16.5vw;
        font-weight: 600;
    }
    .about-solar-section .about-image-right {
        order: 3;
    }
    .about-solar-section .about-text-col {
        order: 2;
    }
    .about-solar-section .about-image-left {
        order: 1;
    }
}